home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / pcr / pcr4_4.lha / DIST / loading / test3.c < prev    next >
Text File  |  1989-01-05  |  117b  |  10 lines

  1. static char *i = "Hello world\n";
  2.  
  3. static int
  4. test3()
  5. {
  6.     printf(i);
  7.     printf("inside test3\n");
  8.     return (test2(i));
  9. }
  10.